home *** CD-ROM | disk | FTP | other *** search
/ The Complete Work of Mahatma Gandhi / The Complete Work of Mahatma Gandhi-CD interactive.iso / mac / Ganmac / eb.cst / 00145_Script_145 < prev    next >
Text File  |  1999-09-22  |  2KB  |  72 lines

  1. on beginNewMovie
  2.   global newWindow
  3.   set newWindow to window "gloss"
  4.   set the rect of newWindow to rect(0,290,560,131)
  5.   set the fileName of newWindow to "gloss"
  6.   set the titlevisible of newWindow to false
  7.   open newWindow
  8. end beginNewMovie
  9.  
  10. on endNewMovie
  11.   global gloson, glossp
  12.   set yy to the name of member the memberNum of sprite glossp
  13.   if chars(yy,1,1) = "r" then
  14.     set the memberNum of sprite glossp to the number of member chars(yy,2,6)
  15.   end if
  16.   
  17.   forget window "11map"
  18.   forget window "13map"
  19.   forget window "18map"
  20.   forget window "19map"
  21.   forget window "27map"
  22.   forget window "38map"
  23.   forget window "53map"
  24.   forget window "65map"
  25.   forget window "89map"
  26.   forget window "96map"
  27.   forget window "147map"
  28.   forget window "160map"
  29.   forget window "164map"
  30.   forget window "208map"
  31.   forget window "255map"
  32.   forget window "299map"
  33.   forget window "313map"
  34.   forget window "gloss"
  35.   set gloson to 0
  36. end endNewMovie
  37.  
  38. on checkfromAV
  39. --  global gname, gmain, avloop, avjump
  40. --  set xx to chars(gname,1,2)
  41. --  if (xx = "AV") and (avjump = 0) then
  42. --    set the visible of sprite 105 to true
  43. --    set avjump to 1
  44. --  else
  45. --    set the visible of sprite 105 to false
  46. --    set gname to the movieName
  47. --    set gmain to the moviePath
  48. --  end if
  49. end checkfromAV
  50.  
  51. on checkVol wgrp
  52.   global gvolume
  53.   if gvolume = 0 then
  54.     set the member of sprite 106 to the number of member ("r"&wgrp&"vol0")
  55.     set the volume of sound 2 to 0
  56.     set the volume of sound 1 to 0
  57.     set the soundLevel = 0
  58.   else if gvolume = 150 then
  59.     set the member of sprite 107 to the number of member ("r"&wgrp&"volm")
  60.     set the volume of sound 1 to 150
  61.     set the volume of sound 2 to 150
  62.     set the soundLevel = 3
  63.   else
  64.     set the member of sprite 108 to the number of member ("r"&wgrp&"voll")
  65.     set the volume of sound 1 to 255
  66.     set the volume of sound 2 to 255
  67.     set the soundLevel = 7
  68.   end if
  69.   updateStage
  70. end checkVol
  71.  
  72.